From 4e8bbcd69d1510b3bae694f40de37cfb6b22ccc8 Mon Sep 17 00:00:00 2001
From: Daniel Carl <danielcarl@gmx.de>
Date: Wed, 8 Jan 2014 01:00:35 +0100
Subject: [PATCH] Fixed wrong function return type in settings.

---
 src/setting.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/setting.c b/src/setting.c
index 09410fe..cd4fdfa 100644
--- a/src/setting.c
+++ b/src/setting.c
@@ -687,7 +687,7 @@ static SettingStatus proxy(const Setting *s, const SettingType type)
         if (type == SETTING_GET) {
             print_value(s, &enabled);
 
-            return true;
+            return SETTING_OK;
         }
     }
 
-- 
2.20.1